home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d22 / mv52.arc / MV52.DOC < prev   
Text File  |  1991-07-04  |  2KB  |  51 lines

  1. MV.COM ver 5.2        by Ron L. Smith
  2.                       3615 Sheridan St.
  3.                       Clovis, NM  88101
  4.                       (505)769-2644
  5.  
  6.  
  7. MV is a program designed to move files from one directory to another.  It is
  8. not intended for use to move files from one drive (or device) to another.
  9. The program is fast, since it moves only the directory entries, not the files
  10. contents.  The program is completely safe, but I take no responsibily as to
  11. the use or suitability of this program for any purpose.
  12.  
  13. Usage:  MV [path1]filename.ext path2
  14.  
  15.         path1 = Source path.  If omitted, current drive/directory is used.
  16.         filename.ext = Source file(s).  Wildcards (*/?) are allowed.
  17.         path2 = Destination path.
  18.  
  19.  
  20.  
  21. Notes:  The use of . (for current directory) and .. (for parent directory)
  22.         is legal.  Examples:
  23.           MV \DOS\*.EXE .      will move all EXE files in the DOS 
  24.                                directory to the current directory.
  25.  
  26.           MV *.BAT ..          will move all BAT files in the current 
  27.                                directory to the parent directory.
  28.  
  29.         MV will never overwrite files.  If a file with the same name already
  30.         exists at the destination, the file will not be moved and a 
  31.         Permission Denied error will be reported.
  32.  
  33.  
  34. Errors: Permission Denied- A file with the same name/ext already exists at 
  35.                          the destination.
  36.  
  37.         Not Same Device- You attempted to move files from one drive (or
  38.                          device) to another.  This is not allowed.
  39.  
  40.         Destination Path Not Found- The destination path entered on the 
  41.                          command line does not exist.
  42.  
  43.         Source Path or File(s) Not Found- The source path does not exist or
  44.                          no files matching the command line argument were
  45.                          found to be moved.
  46.  
  47.         UNKNOWN- File NOT Moved- An unknown error has occured.
  48.  
  49.  
  50.  
  51.